home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / src / main_done.C < prev    next >
C/C++ Source or Header  |  1991-12-11  |  260b  |  19 lines

  1. /*
  2.  * main_*.c
  3.  * 
  4.  *    provide default do-nothings for the Main object.
  5.  *    Each must be in a different .o file to prevent all of them
  6.  *    from being pulled in when only one is needed.
  7.  *
  8.  */
  9.  
  10. #define _MAIN_C
  11. #include "presto.h"
  12.  
  13.  
  14. int
  15. Main::done()
  16. {
  17.     return 0;
  18. }
  19.